home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / dest / dest.p < prev    next >
Text File  |  1996-08-02  |  543b  |  29 lines

  1. #ifndef _dest_P_
  2. #define _dest_P_
  3.  
  4. #include "dest.h"
  5.  
  6. #include "../dbase/dbase.h"
  7.  
  8. typedef struct
  9. {
  10.     unsigned
  11.     dgroup,             /* dest-group index   */
  12.     dname;            /* dest-name  index */
  13.     char
  14.     *filename,        /* filename if a special file */
  15.     *phonenr;        /* phone number if a callback */
  16.     MODE_
  17.     mode;            /* callback mode for this dest */
  18. } DESTINATION_;
  19.  
  20. void set_phonenr(unsigned dest, char *phone);
  21.  
  22. extern unsigned
  23.     ndestinations;
  24.  
  25. extern DESTINATION_            /* array of destinations */
  26.     *destination;
  27.  
  28. #endif  _dest_P_
  29.